home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / DDJMAG / DDJ9207.ZIP / FILTER.ZIP / VIEWER.RC < prev   
Text File  |  1992-01-27  |  1KB  |  36 lines

  1. /****************************************************************************
  2.  
  3.     FILE   : Viewer.rc
  4.  
  5.     PURPOSE: resource file for graphic-file viewer.
  6.  
  7.     RESOURCES:  ViewerMenu MENU - Menu for main window.
  8.         AboutBox   DIALOG - "About" dialog box.
  9.  
  10. ⌐ 1992, Evangelo Prodromou.  All rights reserved.
  11. ****************************************************************************/
  12.  
  13. /* Include Windows header and header for this application. */
  14.  
  15. #include "windows.h"
  16. #include "viewer.h"
  17.  
  18. /* Menu for main window. */
  19.  
  20. ViewerMenu MENU
  21. BEGIN
  22.     MENUITEM "&About Viewer...", IDM_ABOUT
  23. END
  24.  
  25. /* About dialog box. */
  26.  
  27. AboutBox DIALOG 22, 17, 144, 75
  28. STYLE DS_MODALFRAME | WS_CAPTION | WS_SYSMENU
  29. CAPTION "About Viewer"
  30. BEGIN
  31.     CTEXT "Graphic File Viewer"           IDC_STATIC,   0,  5, 144,  8
  32.     CTEXT "Version 1.0"                   IDC_STATIC,   0, 14, 144,  8
  33.     CTEXT "⌐ 1992, Evangelo Prodromou." IDC_STATIC,   0, 34, 144, 8   
  34.     DEFPUSHBUTTON "&OK"                   IDOK,         53, 59,  32, 14
  35. END
  36.